*{
    font-family: '华文细黑';
}

html{
    height: 100%;
}

body{
    background-color: rgb(44, 78, 139);
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:100%;
}

#canvas{
    background-color: rgb(228, 228, 228);
    box-shadow: 0px 3px 15px rgb(22, 42, 79);
    border-radius: 10px;
    padding: 10px;
}

#title{
    color: white;
    font-size: 30px;
}

#description{
    color:white;
}

#tooltip{
    position: absolute;
    visibility: hidden;
    height: auto;
    width: auto;
    background-color: white;
    opacity: 0.7;
}

.cell:hover{
    stroke: black;
    stroke-width: 2px;
}

#legend{
    font-size: 12px;
}